If you want to enable pages for your Community Builder user profile please follow steps below:

1) If you have Community Builder Version  *1.2 RC4* OR *1.2 Stable*:

in file YOUR_SITE/components/com_comprofiler/plugin/templates/default/default.php

Find:

***[CODE]***
// Display "head" tabs: (Menu + shortest connection path / Degree of relationship + Uname Profile Page)
		if ( isset( $this->userViewTabs['cb_head'] ) ) {
			echo '<div class="cbPosHead">';
			echo $this->userViewTabs['cb_head'];
			echo '</div><div class="cbClr"></div>';
		}
		if ( $this->nCols != 0 ) {
			echo "\n\t\t<div class=\"cbPosTop\">";
	
			// Display "Left" tabs
			if ( isset( $this->userViewTabs['cb_left'] ) ) {
				echo "\n\t\t\t<div class=\"cbPosLeft\" style=\"width:" . $this->wLeft . "%;\">";
				echo $this->userViewTabs['cb_left'];
				echo '</div>';
			}
			// Display "Middle" tabs (User Avatar/Image):
			if ( isset( $this->userViewTabs['cb_middle'] ) ) {
				echo "\n\t\t\t<div class=\"cbPosMiddle\" style=\"width:" . $this->wMiddle . "%;\">";
				echo $this->userViewTabs['cb_middle'];
				echo '</div>';
			}
			// Display "Right" tabs (User Status):
			if ( isset( $this->userViewTabs['cb_right'] ) ) {
				echo "\n\t\t\t<div class=\"cbPosRight\" style=\"width:" . $this->wRight . "%;\">";
				echo $this->userViewTabs['cb_right'];
				echo '</div>';
			}
			echo '</div><div class="cbClr"></div>';
		}
		if ( isset( $this->userViewTabs['cb_tabmain'] ) ) {
			echo "\n\t\t<div class=\"cbPosTabMain\">";
			echo $this->userViewTabs['cb_tabmain'];
			echo '</div><div class="cbClr"></div>';
		}
		if ( isset( $this->userViewTabs['cb_underall'] ) ) {
			echo "\n\t\t<div class=\"cbPosUnderAll\">";
			echo $this->userViewTabs['cb_underall'];
			echo '</div><div class="cbClr"></div>';
		}
***[/CODE]***

OR

If you have Community Builder Version from 1.1 to 1.2 RC3:

in file YOUR_SITE/components/com_comprofiler/comprofiler.html.php

Find code like this (it may a little bit differ depending on the version):

***[CODE]****
			echo "\n\t<div class=\"cbProfile\">";

			// Display "head" tabs: (Menu + shortest connection path / Degree of relationship + Uname Profile Page)
			if (isset($userViewTabs["cb_head"])) {
				echo "<div class=\"cbPosHead\">";
	    		echo $userViewTabs["cb_head"];
    			echo "</div>";
			}
			if ($nCols != 0) {
				echo "\n\t\t<div class=\"cbPosTop\">";

				// Display "Left" tabs
				if (isset($userViewTabs["cb_left"])) {
					echo "\n\t\t\t<div class=\"cbPosLeft\" style=\"width:".$wLeft."%;\">";
	    			echo $userViewTabs["cb_left"];
    				echo "</div>";
				}
				// Display "Middle" tabs (User Avatar/Image):
				if (isset($userViewTabs["cb_middle"])) {
					echo "\n\t\t\t<div class=\"cbPosMiddle\" style=\"width:".$wMiddle."%;\">";
	    			echo $userViewTabs["cb_middle"];
    				echo "</div>";
				}
				// Display "Right" tabs (User Status):
				if (isset($userViewTabs["cb_right"])) {
					echo "\n\t\t\t<div class=\"cbPosRight\" style=\"width:".$wRight."%;\">";
	    			echo $userViewTabs["cb_right"];
    				echo "</div>";
				}
				echo "<div class=\"cbClr\">&nbsp;</div></div>";
			}
			if (isset($userViewTabs["cb_tabmain"])) {
				echo "\n\t\t<div class=\"cbPosTabMain\">";
				echo $userViewTabs["cb_tabmain"];
				echo "</div>";
			}
			if (isset($userViewTabs["cb_underall"])) {
				echo "\n\t\t<div class=\"cbPosUnderAll\">";
				echo $userViewTabs["cb_underall"];
				echo "</div>";
			}
			echo "</div>\n";
***[/CODE]***

AND JUST BEFORE THE CODE YOU HAVE FOUND 
ADD

***[CODE]***

//	COMMUNITY BUILDER PROFILE PRO TABS
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////	
			
if ( isset( $this->userViewTabs['not_on_profile_1'] ) or isset( $this->userViewTabs['not_on_profile_2'] ) or isset( $this->userViewTabs['not_on_profile_3'] ) or isset( $this->userViewTabs['not_on_profile_4'] ) or isset( $this->userViewTabs['not_on_profile_5'] ) or isset( $this->userViewTabs['not_on_profile_6'] ) or isset( $this->userViewTabs['not_on_profile_7'] ) )   {
$showtabs = 1; } else { $showtabs = 0; } 

if ($showtabs == 1) {

$lg = &JFactory::getLanguage();
$language = $lg->get('backwardlang');

if(file_exists(JPATH_SITE . '/components/com_comprofiler/plugin/user/plug_cbprofilepro/lang/'.$language.'.php')){
require_once(JPATH_SITE . '/components/com_comprofiler/plugin/user/plug_cbprofilepro/lang/'.$language.'.php'); 			}

global $mainframe; 
$mosConfig_live_site = JURI::base();
$loadtabs = '<style type="text/css">@import "'.$mosConfig_live_site.'components/com_comprofiler/plugin/user/plug_cbprofilepro/pages/pages.css";</style>
			 <script type="text/javascript" src="'.$mosConfig_live_site.'components/com_comprofiler/plugin/user/plug_cbprofilepro/pages/pages.js"></script>';
$mainframe->addCustomHeadTag($loadtabs);

echo '<div class="tabber">';
		echo '<div class="tabbertab" title="'.JText::_( 'Profile Home' ).'">'; }

***[/CODE]***

AND JUST AFTER THAT CODE YOU HAVE FOUND
ADD

***[CODE]***

if ($showtabs == 1) {
		echo '</div>';

 if ( isset( $this->userViewTabs['not_on_profile_1'] ) )   {
	echo '<div class="tabbertab" title="'.JText::_( 'Page 1' ).'">';
	echo '<br />';
	echo $this->userViewTabs['not_on_profile_1'];
	echo '</div>';
}

 if ( isset( $this->userViewTabs['not_on_profile_2'] ) )   {
	echo '<div class="tabbertab" title="'.JText::_( 'Page 2' ).'">';
	echo '<br />';
	echo $this->userViewTabs['not_on_profile_2'];
	echo '</div>';
}
 if ( isset( $this->userViewTabs['not_on_profile_3'] ) )   {
	echo '<div class="tabbertab" title="'.JText::_( 'Page 3' ).'">';
	echo '<br />';
	echo $this->userViewTabs['not_on_profile_3'];
	echo '</div>';
}

 if ( isset( $this->userViewTabs['not_on_profile_4'] ) )   {
	echo '<div class="tabbertab" title="'.JText::_( 'Page 4' ).'">';
	echo '<br />';
	echo $this->userViewTabs['not_on_profile_4'];
	echo '</div>';
}
 if ( isset( $this->userViewTabs['not_on_profile_5'] ) )   {
	echo '<div class="tabbertab" title="'.JText::_( 'Page 5' ).'">';
	echo '<br />';
	echo $this->userViewTabs['not_on_profile_5'];
	echo '</div>';
}
 if ( isset( $this->userViewTabs['not_on_profile_6'] ) )   {
	echo '<div class="tabbertab" title="'.JText::_( 'Page 6' ).'">';
	echo '<br />';
	echo $this->userViewTabs['not_on_profile_6'];
	echo '</div>';
}
 if ( isset( $this->userViewTabs['not_on_profile_7'] ) )   {
	echo '<div class="tabbertab" title="'.JText::_( 'Page 7' ).'">';
	echo '<br />';
	echo $this->userViewTabs['not_on_profile_7'];
	echo '</div>';
}

    echo '</div>'; }

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

***[/CODE]****

2) Copy the folder named "Pages" within this package to next folder on your site:
YOUR_SITE/components/com_comprofiler/plugin/user/plug_cbprofilepro/ .

3) Then publish any of your CB Tabs to any position from "Not displayed on profile 1" TILL "Not displayed on profile 7"
Your CB tabs will appear on profile within new pages.

4) For specifying names for those new pages open 
YOUR_SITE/components/com_comprofiler/plugin/user/plug_cbprofilepro/your_language/your_language.php
and define new values for "Page 1", "Page 2", "Page 3", etc.

That's ALL!
